NodesDisconnectedEvent

data class NodesDisconnectedEvent(contextId: GraphObjectId, sourceId: GraphObjectId, destinationId: GraphObjectId, sourceOutputIndex: Double?, destinationInputIndex: Double?) : Event

Notifies that AudioNodes are disconnected. The destination can be null, and it means all the outgoing connections from the source are disconnected.

Constructors

NodesDisconnectedEvent
Link copied to clipboard
fun NodesDisconnectedEvent(contextId: GraphObjectId, sourceId: GraphObjectId, destinationId: GraphObjectId, sourceOutputIndex: Double? = null, destinationInputIndex: Double? = null)

Functions

domain
Link copied to clipboard
open override fun domain(): String
Returns domain name for which event was generated.
eventName
Link copied to clipboard
open override fun eventName(): String
Returns event name as described in protocol.

Properties

contextId
Link copied to clipboard
val contextId: GraphObjectId
destinationId
Link copied to clipboard
val destinationId: GraphObjectId
destinationInputIndex
Link copied to clipboard
val destinationInputIndex: Double? = null
sourceId
Link copied to clipboard
val sourceId: GraphObjectId
sourceOutputIndex
Link copied to clipboard
val sourceOutputIndex: Double? = null

Sources

jvm source
Link copied to clipboard